home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000024_news@columbia.edu_Sun Dec 25 14:34:49 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06398
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 09:34:55 -0500
  3. Received: by apakabar.cc.columbia.edu id AA28760
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 09:34:53 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: ?Improve 20% efficient Kermit xfers?
  9. Date: 25 Dec 1994 14:34:49 GMT
  10. Organization: Columbia University
  11. Lines: 33
  12. Message-Id: <3djvu9$s2m@apakabar.cc.columbia.edu>
  13. References: <3dds2v$k4p@balsam.unca.edu> <3dfq27$jn8@balsam.unca.edu> <1994Dec23.211814.35981@cc.usu.edu> <3dj72v$b1e@balsam.unca.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3dj72v$b1e@balsam.unca.edu>,
  18. Hand Made in America <handmade@cs.unca.edu> wrote:
  19. >Joe Doupnik (jrd@cc.usu.edu) and I wrote:
  20. >==> > My PC+ *max* length settable from the menu is 94!!!  I have to hexedit 
  21. >...
  22. >i.e., my ProComm+ menu says "type a value between 20 and 94"
  23. >
  24. We can't be responsible for the restrictions of Procomm.  MS-DOS Kermit
  25. lets you choose any packet length up to the theoritical maximum of 9024.
  26.  
  27. >==> > C-Kermit seems limited to 286 bytes at my u. site!
  28. >...
  29. >i.e., if I put a larger value in .kermrc, transfer a file, STAT reports 
  30. >286 byte packet-length.  Do I talk to my local admin?
  31. >
  32. The packet length is determined by the file receiver.  In other words,
  33. the receiver gives the sender permission to send packets UP TO the given
  34. length; the sender can choose to send less, but not more.  A real Kermit
  35. program will normally use the length that you tell it.  If you were using
  36. MS-DOS Kermit, the command would be:
  37.  
  38.   SET RECEIVE PACKET-LENGTH 2000
  39.  
  40. or whatever.  Evidently your version of Procomm does not want to receive
  41. long packets, no matter how you "hexedit" your Procomm configuration.
  42. Maybe that's why it does not have a "command" or setting for this.
  43.  
  44. Give the same command to C-Kermit when uploading.  The current version of
  45. C-Kermit is 5A(190) and, like MS-DOS Kermit 3.xx, it is a full
  46. implementation of the protocol: long packets, sliding windows,
  47. compression, locking shifts, etc etc.
  48.  
  49. - Frank